home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-19 / gpt32src.zip / MAKEFILE.AMG < prev    next >
Text File  |  1992-03-25  |  2KB  |  56 lines

  1. # Makefile for SAS/C 5.10 on the Amiga
  2. #
  3. # $Id: makefile.amg,v 3.26 92/03/24 22:36:53 woo Exp Locker: woo $
  4. #
  5. #
  6.  
  7. CC = lc
  8.  
  9. # Remove '-fi' if you don't want to use the better Commodore math-routines.
  10. # If you do so, you'll have to change 'lcmieee.lib' to 'lcm.lib' in
  11. # "linkopt.amg"
  12. CFLAGS = -b0 -dAMIGA_LC_5_1 -dNOGAMMA -dMEMSET -dMEMCPY -j85i -j88i -fi
  13.  
  14. .c.o:
  15.     $(CC) $(CFLAGS) $<
  16.  
  17. OBJS = bitmap.o command.o contour.o eval.o graphics.o graph3d.o help.o \
  18.     internal.o misc.o parse.o plot.o scanner.o setshow.o \
  19.     standard.o term.o util.o version.o
  20.  
  21. CSOURCE1 = command.c setshow.c 
  22. CSOURCE2 = help.c graphics.c graph3d.o internal.c 
  23. CSOURCE3 = misc.c eval.c parse.c plot.c scanner.c standard.c 
  24. CSOURCE4 = bitmap.c term.c util.c version.c
  25. CSOURCE5 = term/aed.trm term/cgi.trm term/dumb.trm term/dxy.trm \
  26.     term/eepic.trm term/epson.trm term/fig.trm term/hp26.trm \
  27.     term/hp2648.trm term/hpgl.trm term/hpljii.trm term/vws.trm
  28. CSOURCE6 = term/impcodes.h term/imagen.trm term/object.h \
  29.     term/iris4d.trm term/kyo.trm term/latex.trm term/pbm.trm term/pc.trm \
  30.     term/amiga.trm
  31. CSOURCE7 = term/post.trm term/qms.trm term/regis.trm term/sun.trm \
  32.     term/t410x.trm term/tek.trm term/unixpc.trm term/unixplot.trm \
  33.     term/v384.trm term/x11.trm gnuplot_x11.c
  34. CSOURCE8 = contour.c
  35.  
  36. gnuplot: $(OBJS)
  37.     blink with linkopt.amg
  38.  
  39. bitmap.o: bitmap.c bitmap.h plot.h
  40. command.o: command.c plot.h setshow.h help.h
  41. contour.o: contour.c plot.h
  42. eval.o: eval.c plot.h
  43. graph3d.o: graph3d.c plot.h setshow.h
  44. graphics.o: graphics.c plot.h setshow.h
  45. help.o: help.c plot.h help.h
  46. internal.o: internal.c plot.h
  47. misc.o: misc.c plot.h setshow.h help.h
  48. parse.o: parse.c plot.h
  49. plot.o: plot.c plot.h setshow.h
  50. scanner.o: scanner.c plot.h
  51. setshow.o: setshow.c plot.h setshow.h
  52. standard.o: standard.c plot.h
  53. term.o: term.c term.h plot.h setshow.c bitmap.h $(CSOURCE5) $(CSOURCE6) $(CSOURCE7)
  54. util.o: util.c plot.h
  55. version.o: version.c
  56.